home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / shar.zip / MAKEFILE < prev    next >
Text File  |  1991-08-19  |  317b  |  15 lines

  1. # makefile for shar
  2. #
  3. # I use this with Greg Yachuk's make16, but it is pretty straightforward
  4. # and should work with any non-brain-damaged make (which excludes
  5. # Microsoft make!).
  6.  
  7.  
  8. MODEL = S
  9.  
  10. #OBJS = shar.obj reargv.obj
  11. OBJS = shar.obj 
  12.  
  13. shar.exe:    $(OBJS)
  14.     $(CC) $(CFLAGS) -F 1000 -Feshar.exe $(OBJS)
  15.